home *** CD-ROM | disk | FTP | other *** search
- -- background: 2693 from stack: in
- -- bmap block id: 288125
- -- flags: 0000
- -- background id: 0
- -- name:
-
-
- -- part 1 (field)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=309 top=225 right=316 bottom=489
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 12
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Bird Name
-
-
- -- part 5 (button)
- -- low flags: 00
- -- high flags: 2003
- -- rect: left=451 top=37 right=77 bottom=497
- -- title width / last selected line: 0
- -- icon id / first selected line: 20098 / 20098
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Home
- ----- HyperTalk script -----
- on mouseUp
- visual effect iris close
- doMenu Home
- end mouseUp
-
-
-
- -- part 6 (field)
- -- low flags: 00
- -- high flags: 4000
- -- rect: left=24 top=82 right=316 bottom=270
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Field Notes
-
-
- -- part 8 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=322 top=122 right=149 bottom=353
- -- title width / last selected line: 0
- -- icon id / first selected line: 19381 / 19381
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Prev
- ----- HyperTalk script -----
- on mouseUp
- go to prev card
- end mouseUp
-
-
-
- -- part 9 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=356 top=122 right=149 bottom=387
- -- title width / last selected line: 0
- -- icon id / first selected line: 22308 / 22308
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Next
- ----- HyperTalk script -----
- on mouseUp
- go to next card
- end mouseUp
-
-
-
- -- part 10 (button)
- -- low flags: 00
- -- high flags: 0000
- -- rect: left=401 top=136 right=162 bottom=431
- -- title width / last selected line: 0
- -- icon id / first selected line: 14953 / 14953
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Return
- ----- HyperTalk script -----
- on mouseUp
- visual effect iris close
- pop card
- end mouseUp
-
-
-
- -- part 13 (button)
- -- low flags: 00
- -- high flags: 0003
- -- rect: left=452 top=87 right=135 bottom=498
- -- title width / last selected line: 0
- -- icon id / first selected line: 1004 / 1004
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: Make List
- ----- HyperTalk script -----
- on mouseUp
- -- export text
- answer "Really Make Text File?" with Yes or No
- if it is "No" then exit mouseUp
- answer "Full List or Life List?" with Full or Life
- if it is "Life" then put true into doLife
- else put false into doLife
- if doLife is true then put "Life List" into fileName
- else put "Bird List" into fileName
- ask "Put list into what file?" with fileName
- if it is empty then exit mouseUp
- put it into fileName
- open file fileName
- go to second card
- put the number of cards into numCards
- put numCards - 1 into numCards
- repeat with i = 1 to numCards
- if doLife is false or hilite of button "Life List?" is true then
- write field "Bird Name" to file fileName
- write return to file fileName
- end if
- go to next card
- end repeat
- close file fileName
- end mouseUp
-
-